Routing Internet traffic over specific network interfaces [on hold]

Posted by dipamchang on Programmers See other posts from Programmers or by dipamchang
Published on 2013-11-11T13:00:09Z Indexed on 2013/11/11 16:15 UTC
Read the original article Hit count: 113

Filed under:
|
|
|

I want to route my internet traffic over all my available connections (like LAN and Data card(3G)), based on conditions like, if a website is blocked over LAN, that traffic goes through Data Card (or other available internet connection).

My ultimate motive is to integrate this feature in my web browser which I have already built using C# and .Net framework.

I have found that one can add a route by using the following cmd command - route add DestinationIP mask subnet InterfaceGatewayIP but I am stuck as to how should it be implemented using C#?

© Programmers or respective owner

Related posts about c#

Related posts about .NET